<p class="Paragraph">The result is the decimal number for the binary number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">BIN2DEC (Number)</p>
<p class="Paragraph">Number: the binary number. The number should have a maximum of 10 places (bits). The most significant bit is the sign bit. <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>Negative numbers are entered as two's complement.</p>
<p class="Paragraph">The result is the hexadecimal number for the binary number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">BIN2HEX(Number;Places)</p>
<p class="Paragraph">Number: the binary number. The number should have a maximum of 10 places (bits). The most significant bit is the sign bit. <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>Negative numbers are entered as two's complement.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">The result is the octal number for the binary number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">BIN2OCT(Number;Places)</p>
<p class="Paragraph">Number: the binary number. The number should have a maximum of 10 places (bits). The most significant bit is the sign bit. <text:s text:c="" xmlns:text="http://openoffice.org/2000/text"/>Negative numbers are entered as two's complement.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">The result is the binary number for the decimal number entered between -512 and 511.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">DEC2BIN(Number;Places)</p>
<p class="Paragraph">Number: the decimal number. If <span class="T1">Number</span> is negative, the function returns a binary number with 10 characters. The most significant bit is the sign bit, the other 9 bits return the value.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">The result is the hexadecimal number for the decimal number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">DEC2HEX(Number;Places)</p>
<p class="Paragraph">Number: the decimal number. If <span class="T1">Number</span> is negative, the function returns a hexadecimal number with 10 characters (40 bits). The most significant bit is the sign bit, the other 39 bits return the value.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">The result is the octal number for the decimal number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">DEC2OCT(Number;places)</p>
<p class="Paragraph">Number: the decimal number. If <span class="T1">Number</span> is negative, the function returns an octal number with 10 characters (30 bits). The most significant bit is the sign bit, the other 29 bits return the value.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">Lower limit; lower limit of integral.</p>
<p class="Paragraph">Upper limit: optionally the upper limit of the integral. If this value is missing, the calculation takes places between 0 and the lower limit.</p>
<p class="Paragraph">The result is the binary number for the hexadecimal number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">HEX2BIN(Number;Places)</p>
<p class="Paragraph">Number: the hexadecimal number. The number should have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.</p>
<p class="Paragraph">Places: the number of places to be output.</p>
<p class="Paragraph">The result is the decimal number for the hexadecimal number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">HEX2DEC(Number)</p>
<p class="Paragraph">Number: the hexadecimal number. The number should have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.</p>
<p class="Paragraph">The result is the octal number for the hexadecimal number entered.</p>
<p class="Head3">Syntax</p>
<p class="Paragraph">HEX2OCT(Number;Places)</p>
<p class="Paragraph">Number: the hexadecimal number. The number should have a maximum of 10 places. The most significant bit is the sign bit, the following bits return the value. Negative numbers are entered as two's complement.</p>
<p class="Paragraph">Places: the number of places to be output.</p>